home *** CD-ROM | disk | FTP | other *** search
/ Daddy Day Care Press Kit / Daddy Day Care Press Kit.iso / pc / acrobat reader 5 pc / plug_ins / movie / movie.api / EXVW / 1 next >
Text File  |  2002-12-13  |  1KB  |  30 lines

  1. gOperationMenuWidth=max(
  2.     zstring_width(zstring: '$$$IDS_aPlay'),
  3.     zstring_width(zstring: '$$$IDS_aStop'),
  4.     zstring_width(zstring: '$$$IDS_aPause'),
  5.     zstring_width(zstring: '$$$IDS_aResume'));
  6. gMenuLabelsWidth=max(
  7.     zstring_width(zstring: '$$$/Dialogs/MoviePlayer/MovieAction/SelectMovie'),
  8.     zstring_width(zstring: '$$$/Dialogs/MoviePlayer/MovieAction/SelectOp'));
  9.  
  10. dialog(name: '$$$/Dialogs/MoviePlayer/MovieAction', target_id: 'mAct')
  11. {
  12.     group()
  13.     {
  14.         group( align_children: align_left )
  15.         {
  16.             view( align_children: align_row )
  17.             {
  18.                 static_text( name: '$$$/Dialogs/MoviePlayer/MovieAction/SelectMovie', width: gMenuLabelsWidth, alignment: align_right );
  19.                 popup( item_id: 'pick', width: max_char_width( ) * 16 );
  20.             }
  21.             view( align_children: align_row )
  22.             {
  23.                 static_text( name: '$$$/Dialogs/MoviePlayer/MovieAction/SelectOp', width: gMenuLabelsWidth, alignment: align_right );
  24.                 popup( item_id: 'oper', width: gOperationMenuWidth );
  25.             }
  26.         }
  27.         gap(height: 3);
  28.         ok_cancel();
  29.     }
  30. }